Cogsol framework agent
The cogsol-framework-agent is a reference agent built on top of cogsol-framework. It can answer questions about the framework and its core concepts.
Using the MCP server
The agent is exposed through a Model Context Protocol (MCP) HTTP server.
- Base URL: https://mcp-agent-framework.cogsol.ai
- MCP endpoint: https://mcp-agent-framework.cogsol.ai/mcp
You can connect to this server from tools that support MCP, such as GitHub Copilot and Claude Code.
GitHub Copilot in VS Code
To use the agent from GitHub Copilot in Visual Studio Code:
- In your workspace, create a
.vscodefolder if it does not already exist. - Inside
.vscode, create a file namedmcp.jsonwith the following content:
{
"servers": {
"cogsol-mcp": {
"type": "http",
"url": "https://mcp-agent-framework.cogsol.ai/mcp"
}
}
}
- Open the GitHub Copilot settings in VS Code.
- Go to the MCP servers section. You should see a server named
cogsol-mcpunder Installed MCP servers. - In the same section, select
cogsol-mcpand click Start server to start it.
Once the server is running, you can start chatting with Copilot. When asking questions, be explicit that you are looking for help with the cogsol-framework or its documentation so that Copilot is more likely to route the query through the cogsol-mcp server.
Claude Code
To use the agent from Claude Code:
- In a terminal, register the MCP server:
claude mcp add --transport http cogsol-docs https://mcp-agent-framework.cogsol.ai/mcp
- Restart your Claude Code session (close and open it again) so that it loads the new MCP server configuration.
- To verify that the server is installed, type
/mcpin a Claude Code chat and confirm thatcogsol-docsappears in the list of available MCP servers.